/* =====================================================
   GS LOCAMASTER × Lead Factory — Landing VSL
   DNA repris du site existant : vert sapin / crème / sable
   Cormorant Garamond (display) + Outfit (sans body)
   ===================================================== */

:root {
  /* Couleurs identiques au site de référence */
  --cream:        #F5F2EB;
  --cream-2:      #EDE9DF;
  --cream-3:      #E4DFCF;
  --green:        #2A4A3A;
  --green-2:      #3B6050;
  --green-deep:   #1a2e24;
  --green-darker: #0f1a14;
  --green-light:  #E8F0EB;
  --sand:         #C8B89A;
  --sand-light:   #F0E9DC;
  --text:         #1A1F1C;
  --text-mid:     #4A5047;
  --text-soft:    #8A8E87;
  --white:        #FFFFFF;
  --border:       rgba(42,74,58,0.12);

  --serif: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --sans:  "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --radius:    4px;
  --radius-lg: 6px;

  --shadow-sm: 0 1px 2px rgba(26,31,28,.06), 0 1px 1px rgba(26,31,28,.04);
  --shadow:    0 12px 30px -8px rgba(42,74,58,.18), 0 4px 12px -4px rgba(42,74,58,.10);

  --maxw:  1180px;
  --pad-x: clamp(20px, 4vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-mid);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { color: var(--text); font-weight: 600; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* =================== TOP BAR =================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,242,235,.95);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--green);
  letter-spacing: .04em;
}
.brand__tagline {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .01em;
  border-radius: var(--radius);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-nav {
  background: var(--green);
  color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
}
.btn-nav:hover { background: var(--green-2); transform: translateY(-1px); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 16px 30px;
  font-size: 15px;
}
.btn-primary:hover {
  background: var(--green-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(42,74,58,.18);
}
.btn--block { width: 100%; }

/* =================== HERO =================== */
.hero {
  background: var(--cream);
  position: relative;
  padding: clamp(48px, 7vw, 90px) 0 clamp(40px, 6vw, 70px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--sand-light) 0%, transparent 100%);
  pointer-events: none;
}
.hero__inner { position: relative; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 22px;
  font-weight: 500;
}

.hero__h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  color: var(--text);
  margin: 0 0 22px;
  letter-spacing: -.005em;
}
.hero__h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}

.hero__sub {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-mid);
  line-height: 1.6;
}

/* =================== VSL =================== */
.vsl {
  margin: 0 auto;
  max-width: 880px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-darker);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.vsl > div[id^="vidalytics_embed_"] {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* =================== GENERIC SECTIONS =================== */
.section {
  padding: clamp(64px, 9vw, 110px) 0;
  background: var(--white);
}
.section--cream { background: var(--cream); }
.section--dark {
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-darker) 100%);
  color: var(--cream);
}

.kicker {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin: 0 0 14px;
}
.kicker--light { color: var(--sand); }

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: -.005em;
  max-width: 820px;
}
.h2 em { font-style: italic; color: var(--green); }
.h2--light { color: var(--cream); }
.h2--light em { color: var(--sand); }

.lead {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 0 32px;
  line-height: 1.65;
}
.lead--light { color: rgba(245,242,235,.78); }

.microproof {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-soft);
  text-align: center;
}
.microproof--light { color: rgba(245,242,235,.65); }

/* =================== CALENDLY SECTION =================== */
.calendar {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.calendar .h2,
.calendar .lead { margin-left: auto; margin-right: auto; }

.calendly-inline-widget {
  margin: 28px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.calendar--dark .calendly-inline-widget {
  background: var(--green-deep);
  border-color: rgba(245,242,235,.10);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,.45);
}

/* =================== OFFER GRID =================== */
.offerGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0 18px;
}
.offerCard {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.offerCard:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.offerCard--price {
  background: var(--white);
  border: 1.5px solid var(--green);
}
.offerCard__label {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
  margin: 0 0 10px;
}
.offerCard__price,
.offerCard__valueAmount {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600;
  color: var(--green);
  line-height: 1;
  margin: 0 0 12px;
  letter-spacing: -.01em;
}
.offerCard__price span,
.offerCard__valueAmount span {
  display: inline-block;
  font-size: 16px;
  font-family: var(--sans);
  color: var(--text-mid);
  font-weight: 400;
  margin-left: 6px;
  letter-spacing: 0;
  vertical-align: middle;
}
.offerCard__valueAmount {
  color: var(--text);
}
.offerCard__valueAmount span { color: var(--text-mid); }
.offerCard__note {
  margin: 0 0 20px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.6;
}

/* =================== TRUST STRIP =================== */
.trust {
  list-style: none;
  margin: 56px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust li { text-align: center; }
.trust strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.trust span {
  display: block;
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* =================== STEPS =================== */
.steps {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  counter-reset: step;
}
.steps li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.steps li:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.steps__num {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  color: var(--green);
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.steps h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: -.005em;
}
.steps p { margin: 0; color: var(--text-mid); font-size: 15px; line-height: 1.6; }

/* =================== FOOTER =================== */
.footer {
  background: var(--green-darker);
  color: rgba(245,242,235,.7);
  padding: 50px 0 60px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.brand--footer .brand__name { color: var(--cream); }
.brand--footer .brand__tagline { color: rgba(245,242,235,.55); }
.footer__small { font-size: 13px; margin: 14px 0 0; color: rgba(245,242,235,.55); }
.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(245,242,235,.55);
  align-items: center;
}
.footer__legal a:hover { color: var(--sand); }

/* =================== RESPONSIVE =================== */
@media (max-width: 880px) {
  .offerGrid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .topbar__inner { height: 64px; }
  .brand__tagline { display: none; }
}
@media (max-width: 480px) {
  body { font-size: 15px; }
  .footer__legal { flex-direction: column; gap: 8px; align-items: flex-start; }
  .calendly-inline-widget { height: 720px !important; }
}
