/* Vue A Table - shared marketing stylesheet
   Variables mirror style.css (the app shell stylesheet) for total visual
   consistency between the app and the marketing pages, plus a couple of
   extra tokens (--ink) needed for header/footer contrast. */
:root {
  --brick: #B8481F;
  --brick-dark: #9a3a17;
  --cream: #F7EEE1;
  --cream-bg: #efe6d7;
  --gold: #D99A2B;
  --gold-light: #F1C877;
  --text-brown: #5c3a26;
  --text-brown-light: #4a2f1e;
  --text-brown-soft: #a06a3c;
  --error: #c0392b;
  --ink: #2b1a10;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream-bg);
  color: var(--text-brown);
  font-family: 'Nunito', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .serif { font-family: 'DM Serif Display', serif; font-weight: 400; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247,238,225,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,72,31,.12);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  max-width: 1180px; margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--brick);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  color: var(--gold-light);
  font-size: 15px;
}
.nav-name { font-weight: 900; letter-spacing: .01em; color: var(--brick); font-size: 17px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link {
  font-weight: 800; font-size: 15px;
  color: var(--text-brown);
  text-decoration: none;
}
.nav-link:hover { color: var(--brick); }
.nav-link.is-active { color: var(--brick); }
.nav-cta {
  background: var(--brick); color: var(--cream);
  padding: 11px 22px; border-radius: 30px;
  font-weight: 800; font-size: 14px;
  text-decoration: none;
  box-shadow: 0 6px 16px -6px rgba(184,72,31,.5);
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 17px 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--ink); box-shadow: 0 14px 30px -10px rgba(217,154,43,.7); }
.btn--ghost { background: transparent; color: var(--cream); border: 1.5px solid rgba(247,238,225,.4); }
.btn--brick { background: var(--brick); color: var(--cream); box-shadow: 0 14px 30px -10px rgba(184,72,31,.6); }
.btn--whatsapp { background: #25D366; color: #06340f; }

/* PAGE HEADER (secondary-page hero) */
.page-header {
  background: linear-gradient(160deg, var(--brick) 0%, var(--brick-dark) 65%, #6f280f 100%);
  color: var(--cream);
  padding: 96px 0;
  text-align: center;
}
.page-header--tall { padding: 120px 0 320px; }
.page-eyebrow { color: var(--gold-light); margin-bottom: 18px; }
.page-title { font-size: 46px; line-height: 1.08; margin: 0 0 18px; }
.page-sub {
  font-size: 17px; line-height: 1.6; font-weight: 600;
  color: rgba(247,238,225,.9);
  max-width: 560px; margin: 0 auto;
}

/* SECTION generic */
section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow { color: var(--brick); margin-bottom: 14px; }
.section-title { font-size: 38px; color: var(--ink); margin: 0; line-height: 1.15; }

/* PRICING (plan cards) */
.pricing { padding: 1px 0 88px; background: var(--cream-bg); }
.plans-grid {
  position: relative;
  z-index: 5;
  margin-top: -280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.plan-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(184,72,31,.12);
  box-shadow: 0 30px 60px -20px rgba(20,8,2,.4);
}
.plan-card--highlight { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.plan-card--highlight::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(217,154,43,.25), transparent 55%);
  pointer-events: none;
}
.plan-tag {
  display: inline-block; align-self: flex-start;
  background: rgba(184,72,31,.1); color: var(--brick);
  font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 30px; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.plan-card--highlight .plan-tag { background: rgba(217,154,43,.18); color: var(--gold-light); }
.plan-name { font-size: 30px; margin: 0 0 8px; color: var(--ink); position: relative; z-index: 1; }
.plan-card--highlight .plan-name { color: var(--cream); }
.plan-desc { font-size: 15px; font-weight: 600; line-height: 1.55; color: var(--text-brown); margin: 0 0 28px; position: relative; z-index: 1; }
.plan-card--highlight .plan-desc { color: rgba(247,238,225,.82); }
.plan-price { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--brick); margin: 0 0 28px; position: relative; z-index: 1; }
.plan-card--highlight .plan-price { color: var(--gold-light); }
.plan-features { list-style: none; margin: 0 0 32px; padding: 0; flex: 1; position: relative; z-index: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 700; padding: 11px 0; border-top: 1px solid rgba(184,72,31,.12); }
.plan-card--highlight .plan-features li { border-top: 1px solid rgba(247,238,225,.14); }
.plan-features li:first-child { border-top: none; }
.plan-features li.is-included { color: var(--text-brown); }
.plan-card--highlight .plan-features li.is-included { color: rgba(247,238,225,.92); }
.plan-features .check {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  font-size: 12px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.plan-cta { text-align: center; position: relative; z-index: 1; }
.plan-card--highlight .btn--brick { background: var(--gold); color: var(--ink); box-shadow: 0 14px 30px -10px rgba(217,154,43,.7); }
.pricing-note { max-width: 720px; margin: 48px auto 0; text-align: center; font-size: 14px; font-weight: 600; color: var(--text-brown-soft); }

/* FLOW STEPS (fonctionnement) */
.flow-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid rgba(184,72,31,.15);
}
.flow-step:first-of-type { border-top: none; }
.flow-step:nth-child(even) .flow-visual { order: -1; }
.flow-tagline { font-size: 26px; color: var(--ink); margin: 0 0 16px; line-height: 1.3; }
.flow-tagline .num { color: var(--gold); font-family: 'DM Serif Display', serif; margin-right: 10px; }
.flow-text { font-size: 16px; font-weight: 600; line-height: 1.65; color: var(--text-brown); margin: 0 0 14px; }
.flow-text:last-child { margin-bottom: 0; }
.flow-visual img { display: block; width: 260px; max-width: 100%; margin: 0 auto; border-radius: 18px; box-shadow: 0 20px 40px -16px rgba(60,25,10,.3); }

/* CONTACT / CTA band */
.contact { background: var(--brick); color: var(--cream); text-align: center; padding: 96px 0; }
.contact-title { font-size: 42px; margin: 0 0 18px; }
.contact-sub { font-size: 17px; font-weight: 600; color: rgba(247,238,225,.85); max-width: 480px; margin: 0 auto 40px; }
.contact-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FAQ */
.faq-item { border-top: 1px solid rgba(184,72,31,.15); padding: 28px 0; }
.faq-item:first-of-type { border-top: none; }
.faq-q { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--brick); margin: 0 0 10px; }
.faq-a { font-family: 'Nunito', system-ui, sans-serif; font-weight: 600; font-size: 16px; line-height: 1.6; color: var(--text-brown); margin: 0; }

/* DEMO - pure conversion page */
.demo-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--brick) 0%, var(--brick-dark) 65%, #6f280f 100%);
  color: var(--cream);
  padding: 48px 24px;
}
.demo-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 48px; }
.demo-eyebrow { color: var(--gold-light); margin-bottom: 20px; }
.demo-title { font-size: 48px; line-height: 1.08; margin: 0 0 22px; max-width: 720px; }
.demo-sub { font-size: 18px; font-weight: 600; line-height: 1.6; color: rgba(247,238,225,.88); max-width: 460px; margin: 0 auto 44px; }
.demo-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.demo-note { margin-top: 28px; font-size: 13px; font-weight: 600; color: rgba(247,238,225,.55); }

/* TESTIMONIAL CARDS (temoignages) */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 16px 36px -18px rgba(60,25,10,.28);
}
.testimonial-avatar {
  width: 128px; height: 128px; margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.testimonial-quote { font-family: 'Nunito', system-ui, sans-serif; font-weight: 600; font-style: italic; font-size: 15px; line-height: 1.6; color: var(--text-brown); margin: 0; }
.testimonial-author { font-weight: 800; font-size: 13px; color: var(--brick); margin: 14px 0 0; }

/* ABOUT (a-propos) */
.about-content { max-width: 680px; margin: 0 auto; }
.about-content p { font-size: 17px; line-height: 1.75; font-weight: 600; color: var(--text-brown); margin: 0 0 24px; }
.about-signoff { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--brick); margin-top: 40px; }

/* CONTACT FORM (contact page) */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(184,72,31,.12);
}
.contact-info-title { font-size: 22px; color: var(--ink); margin: 0 0 18px; }
.contact-info-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-weight: 700; }
.contact-info-row:last-child { margin-bottom: 0; }
.contact-info-row a { text-decoration: none; color: var(--brick); }
.contact-info-row a:hover { text-decoration: underline; }
.form-label { display: block; font-size: 14px; font-weight: 800; color: var(--text-brown); margin: 0 0 8px; }
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(184,72,31,.2);
  background: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-brown);
  margin-bottom: 20px;
  outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,154,43,.15); }
.form-textarea { resize: vertical; min-height: 120px; }

/* LEGAL PAGES */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-updated { font-size: 14px; font-weight: 700; color: var(--text-brown-soft); margin-bottom: 40px; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 { font-size: 24px; color: var(--ink); margin: 0 0 14px; }
.legal-section p { font-size: 16px; line-height: 1.7; font-weight: 600; color: var(--text-brown); margin: 0 0 12px; }
.legal-placeholder {
  display: inline-block;
  background: rgba(217,154,43,.18);
  color: var(--brick-dark);
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
}

/* FOOTER */
footer { background: #241209; color: rgba(247,238,225,.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--brick);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  color: var(--gold-light);
  font-size: 13px;
}
.footer-name { font-weight: 900; color: var(--cream); }
.footer-vp { font-size: 14px; font-weight: 600; line-height: 1.6; color: rgba(247,238,225,.55); max-width: 260px; }
.footer-col-title { font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: rgba(247,238,225,.4); margin-bottom: 16px; }
.footer-link { display: block; font-size: 14px; font-weight: 700; color: rgba(247,238,225,.75); text-decoration: none; margin-bottom: 12px; }
.footer-link:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(247,238,225,.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; font-weight: 600; color: rgba(247,238,225,.35);
}

/* RESPONSIVE */
@media (max-width: 860px) {
  section { padding: 64px 0; }
  .plans-grid { grid-template-columns: 1fr; margin-top: -220px; }
  .pricing { padding: 1px 0 64px; }
  .page-header--tall { padding: 90px 0 300px; }
  .page-title, .demo-title { font-size: 36px; }
  .flow-step, .flow-step:nth-child(even) { grid-template-columns: 1fr; }
  .flow-step:nth-child(even) .flow-visual { order: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  .nav-links { gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
  .nav-link { font-size: 13px; }
  .page-header--tall { padding: 72px 0 260px; }
  .plans-grid { margin-top: -180px; }
  .page-title, .demo-title { font-size: 30px; }
  .plan-card { padding: 32px 24px; }
  .section-title { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

a.btn:focus-visible, a.footer-link:focus-visible, a.nav-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
