/* ============ TOKENS (charte TropicDeals) ============ */
:root{
  --green:#498B70;
  --green-dark:#437A64;
  --ink:#1C464F;
  --cream:#EEF0E9;
  --offwhite:#F1F4F2;
  --sage:#DAE0CB;
  --white:#FFFFFF;
  --gold:#E8A93C;

  --font-logo:'Bitter', serif;
  --font-head:'Fredoka', sans-serif;
  --font-body:'Inter', sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box;}
[hidden]{display:none!important;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none;}
img,svg{display:block;max-width:100%;}
ul{list-style:none;}

.wrap{max-width:1160px;margin:0 auto;padding:0 28px;}

h1,h2,h3{font-family:var(--font-head);font-weight:600;line-height:1.12;color:var(--ink);}

.icon{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 28px;
  border-radius:999px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:.98rem;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s ease;
}
.btn:hover{transform:translateY(-2px);}
.btn .icon{width:19px;height:19px;}
.btn-primary{background:var(--cream);color:var(--ink);}
.btn-primary:hover{opacity:.92;}
.btn-solid-ink{background:var(--ink);color:var(--white);}
.btn-solid-ink:hover{opacity:.9;}
.btn-ghost{background:transparent;border-color:rgba(255,255,255,.6);color:var(--white);}
.btn-ghost:hover{background:rgba(255,255,255,.1);}
.btn-ghost-ink{background:transparent;border-color:var(--ink);color:var(--ink);}
.btn-ghost-ink:hover{background:rgba(28,70,79,.06);}

/* ============ LOGO ============ */
.brand{display:flex;align-items:center;}
.brand-logo{
  height:34px;
  width:auto;
  flex-shrink:0;
}
.brand-logo.lg{height:52px;}

.brand-icon{
  width:44px;height:44px;
  border-radius:11px;
  flex-shrink:0;
  box-shadow:0 3px 10px rgba(28,70,79,.18);
}
.brand-icon.sm{width:38px;height:38px;border-radius:9px;}
.brand-icon.lg{width:64px;height:64px;border-radius:15px;}

.brand-word{
  font-family:var(--font-logo);
  font-weight:800;
  font-size:1.32rem;
  letter-spacing:-.01em;
  color:var(--ink);
  line-height:1;
  margin-left:2px;
}
.brand-word.on-dark{color:var(--cream);}
.brand-word.lg{font-size:1.9rem;}

/* ============ HEADER ============ */
header{
  position:sticky;top:0;z-index:50;
  background:rgba(238,240,233,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(28,70,79,.08);
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:12px;padding-top:16px;padding-bottom:16px;}
.nav .btn{padding:10px 22px;font-size:.9rem;}

@media (max-width:400px){
  .nav .btn{padding:10px 16px;font-size:.84rem;}
  .brand-word{font-size:1.18rem;}
}

/* ============ HERO ============ */
.hero{
  position:relative;
  background:linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  color:var(--cream);
  overflow:hidden;
  padding:80px 0 0;
}
.leaf-bg{
  position:absolute;
  top:-10%;left:-15%;
  width:75%;height:130%;
  opacity:.14;
  pointer-events:none;
}
.hero-grid{
  display:grid;grid-template-columns:1.1fr .9fr;
  gap:56px;align-items:center;
  position:relative;
  padding-bottom:64px;
}
.hero .eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-head);font-weight:600;
  color:var(--ink);
  background:var(--gold);
  padding:7px 16px 7px 12px;
  border-radius:999px;
  margin-bottom:18px;
  font-size:.92rem;
}
.hero .eyebrow .icon{width:16px;height:16px;}
.hero h1{
  font-size:clamp(2.2rem, 4.2vw, 3.15rem);
  margin-bottom:20px;
}
.hero p.lede{
  font-size:1.12rem;
  color:rgba(238,240,233,.85);
  max-width:48ch;
  margin-bottom:32px;
}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;}
.hero-note{margin-top:20px;font-size:.86rem;color:rgba(238,240,233,.65);}

/* phone mockup, matches app screenshots style */
.phone-stage{display:flex;justify-content:center;position:relative;}
.phone{
  width:250px;
  background:var(--ink);
  border-radius:36px;
  padding:12px;
  box-shadow:0 30px 60px rgba(0,0,0,.35);
}
.phone-notch{
  height:18px;display:flex;justify-content:space-between;align-items:center;
  padding:0 14px;margin-bottom:6px;
  font-family:var(--font-body);font-size:.62rem;color:rgba(238,240,233,.8);
}
.phone-screen{
  background:radial-gradient(circle at 30% 20%, rgba(73,139,112,.5), transparent 55%), var(--ink);
  border-radius:26px;
  aspect-ratio:9/17.5;
  padding:0;
  position:relative;
  overflow:hidden;
}
.phone-screenshot{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}
.phone-pin{
  position:absolute;
  width:36px;height:36px;
  border-radius:50%;
  background:var(--green);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 10px rgba(0,0,0,.3);
}
.phone-pin .icon{width:18px;height:18px;color:var(--cream);stroke-width:2.2;}
.phone-card{
  position:absolute;bottom:16px;left:14px;right:14px;
  background:var(--cream);
  border-radius:16px;
  padding:14px;
}
.phone-card .t{font-family:var(--font-head);font-weight:600;color:var(--ink);font-size:.86rem;margin-bottom:4px;}
.phone-card .s{font-size:.72rem;color:rgba(28,70,79,.6);margin-bottom:10px;}
.phone-card .pill{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--green);
  color:var(--cream);
  font-family:var(--font-body);font-weight:600;font-size:.72rem;
  padding:8px 16px;border-radius:999px;
}
.phone-card .pill .icon{width:13px;height:13px;}

/* trust bar under hero */
.trust-bar{
  background:rgba(28,70,79,.18);
  border-top:1px solid rgba(238,240,233,.15);
}
.trust-row{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:18px;
  padding-top:20px;padding-bottom:20px;
}
.trust-item{
  display:flex;align-items:center;gap:10px;
  color:rgba(238,240,233,.9);
  font-size:.88rem;font-weight:600;
}
.trust-item .icon{width:19px;height:19px;color:var(--gold);}

/* ============ SECTION SHARED ============ */
section{padding:88px 0;}
.section-head{max-width:640px;margin:0 auto 52px;text-align:center;}
.section-head .eyebrow{
  font-family:var(--font-head);font-weight:600;
  color:var(--green);display:block;margin-bottom:10px;
}
.section-head h2{font-size:clamp(1.7rem, 3vw, 2.3rem);}
.section-head p{margin-top:12px;color:rgba(28,70,79,.68);font-size:1.02rem;}

/* ============ NOTRE HISTOIRE ============ */
.story-section{background:var(--offwhite);overflow:hidden;}
.story-grid{
  display:grid;grid-template-columns:1.1fr .9fr;
  gap:56px;align-items:center;
}
.story-text .eyebrow{
  font-family:var(--font-head);font-weight:600;
  color:var(--green);display:block;margin-bottom:12px;
}
.story-text h2{font-size:clamp(1.7rem, 3vw, 2.3rem);margin-bottom:22px;max-width:16ch;}
.story-text p{
  font-size:1.02rem;
  color:rgba(28,70,79,.75);
  margin-bottom:16px;
  max-width:56ch;
}
.story-tags{display:flex;gap:10px;flex-wrap:wrap;margin-top:24px;}
.story-tag{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--white);
  border:1px solid rgba(28,70,79,.1);
  border-radius:999px;
  padding:8px 16px;
  font-size:.82rem;font-weight:600;
  color:var(--ink);
}
.story-tag .icon{width:15px;height:15px;color:var(--green);}

.story-quote-card{
  position:relative;
  background:linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius:24px;
  padding:44px 36px;
  color:var(--cream);
  overflow:hidden;
}
.story-quote-card .quote-mark{
  font-family:var(--font-logo);
  font-size:5rem;
  line-height:1;
  color:rgba(238,240,233,.35);
  margin-bottom:6px;
}
.story-quote-card blockquote{
  font-family:var(--font-head);
  font-weight:600;
  font-size:1.35rem;
  line-height:1.4;
  margin-bottom:20px;
}
.story-quote-card cite{
  display:block;
  font-style:normal;
  font-size:.86rem;
  color:rgba(238,240,233,.75);
}
.story-quote-card .leaf-deco{
  position:absolute;bottom:-30px;right:-30px;
  width:160px;height:160px;
  opacity:.15;
}

@media (max-width: 880px){
  .story-grid{grid-template-columns:1fr;}
  .story-quote-card{order:-1;}
}

/* ============ STEPS ============ */
.steps-section{
  background:linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  color:var(--cream);
  position:relative;
  overflow:hidden;
}
.steps-section .section-head h2{color:var(--cream);}
.steps-section .section-head .eyebrow{color:var(--sage);}
.steps-section .section-head p{color:rgba(238,240,233,.75);}
.steps{max-width:640px;margin:0 auto;}
.step-row{display:flex;gap:20px;}
.step-marker{display:flex;flex-direction:column;align-items:center;}
.step-circle{
  width:48px;height:48px;border-radius:50%;
  background:var(--cream);color:var(--green-dark);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.step-circle .icon{width:22px;height:22px;}
.step-dots{
  flex:1;width:2px;
  background-image:radial-gradient(circle, rgba(238,240,233,.5) 2px, transparent 2px);
  background-size:2px 10px;
  background-repeat:repeat-y;
  margin:6px 0;
}
.step-row:last-child .step-dots{display:none;}
.step-content{padding-bottom:36px;}
.step-content h3{
  color:var(--cream);
  font-size:1.15rem;font-weight:600;margin-bottom:6px;padding-top:10px;
}
.step-content p{color:rgba(238,240,233,.78);font-size:.96rem;}

/* ============ FEATURE CARDS ============ */
.card-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}
.feature-card{
  background:var(--white);
  border-radius:18px;
  padding:26px 24px;
  box-shadow:0 12px 30px rgba(28,70,79,.06);
  transition:transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover{transform:translateY(-4px);box-shadow:0 16px 34px rgba(28,70,79,.1);}
.feature-card .marker{
  width:44px;height:44px;
  background:var(--ink);
  border-radius:10px;
  margin-bottom:16px;
  display:flex;align-items:center;justify-content:center;
}
.feature-card .marker .icon{width:22px;height:22px;color:var(--cream);}
.feature-card h3{font-size:1.05rem;margin-bottom:8px;}
.feature-card p{font-size:.9rem;color:rgba(28,70,79,.65);}

/* ============ TERRITOIRES ============ */
.territories{background:var(--offwhite);}
.chip-row{display:flex;gap:14px;flex-wrap:wrap;justify-content:center;}
.chip{
  display:flex;align-items:center;gap:10px;
  background:var(--white);
  border:1px solid rgba(28,70,79,.1);
  border-radius:999px;
  padding:12px 22px;
  font-weight:600;font-size:.96rem;
  box-shadow:0 6px 16px rgba(28,70,79,.05);
}
.chip .icon{width:17px;height:17px;color:var(--green);}

/* ============ EARLY COMMUNITY BANNER ============ */
.early-banner{
  background:var(--sage);
  border-radius:20px;
  padding:32px 36px;
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  justify-content:space-between;
}
.early-left{display:flex;align-items:center;gap:16px;max-width:560px;}
.early-left .icon-badge{
  width:52px;height:52px;border-radius:14px;
  background:var(--ink);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.early-left .icon-badge .icon{width:26px;height:26px;color:var(--cream);}
.early-left h3{font-size:1.1rem;margin-bottom:4px;}
.early-left p{font-size:.9rem;color:rgba(28,70,79,.7);}

/* ============ TUTORIEL ============ */
.tuto-section{background:var(--offwhite);}
.tuto-step-badge{
  display:inline-flex;align-items:center;justify-content:center;
  width:30px;height:30px;
  border-radius:50%;
  background:var(--ink);
  color:var(--cream);
  font-family:var(--font-head);font-weight:600;font-size:.88rem;
  margin-bottom:14px;
}
.tuto-phone{
  width:100%;
  max-width:220px;
  margin:0 auto 16px;
  background:var(--ink);
  border-radius:26px;
  padding:8px;
  box-shadow:0 16px 34px rgba(28,70,79,.14);
}
.tuto-phone img{
  width:100%;
  border-radius:19px;
  display:block;
  aspect-ratio:9/17.5;
  object-fit:cover;
}
.tuto-card h3{font-size:.98rem;margin-bottom:6px;}
.tuto-card p{font-size:.84rem;color:rgba(28,70,79,.65);max-width:260px;margin:0 auto;}

/* ============ DOWNLOAD ============ */
.download-section{padding:88px 0;}
.download-card{
  background:var(--white);
  border-radius:28px;
  box-shadow:0 20px 50px rgba(28,70,79,.1);
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  overflow:hidden;
  margin-top:36px;
}
.download-panel{
  background:var(--green);
  color:var(--cream);
  padding:52px 40px;
  display:flex;flex-direction:column;justify-content:center;
  gap:16px;
}
.download-panel h2{color:var(--cream);font-size:2rem;}
.download-panel p{color:rgba(238,240,233,.8);font-size:.98rem;}
.download-content{
  padding:52px 44px;
  display:flex;flex-direction:column;justify-content:center;
}
.download-content h3{font-size:1.2rem;margin-bottom:18px;}
.perk-list{display:flex;flex-direction:column;gap:12px;margin-bottom:24px;}
.perk-list li{display:flex;align-items:center;gap:10px;font-size:.92rem;color:var(--ink);}
.perk-list .icon{width:19px;height:19px;color:var(--green);flex-shrink:0;}
.download-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:16px;}
.download-content small{color:rgba(28,70,79,.55);font-size:.82rem;}

@media (max-width: 760px){
  .download-card{grid-template-columns:1fr;}
}

/* ============ PREMIER DEAL (accompagnement commerçants) ============ */
.first-deal{background:var(--white);}
.fd-grid{
  display:grid;grid-template-columns:.85fr 1.15fr;
  gap:48px;align-items:start;
}
.fd-side p{color:rgba(28,70,79,.68);margin-bottom:22px;max-width:40ch;}
.fd-perks{display:flex;flex-direction:column;gap:16px;}
.fd-perk{display:flex;align-items:flex-start;gap:12px;}
.fd-perk .icon{width:20px;height:20px;color:var(--green);flex-shrink:0;margin-top:2px;}
.fd-perk strong{display:block;font-size:.94rem;margin-bottom:2px;}
.fd-perk span{font-size:.86rem;color:rgba(28,70,79,.6);}

.first-deal-form{
  background:var(--offwhite);
  border-radius:20px;
  padding:36px;
  box-shadow:0 12px 30px rgba(28,70,79,.06);
}

.radio-group{display:flex;flex-direction:column;gap:12px;margin-bottom:20px;}
.radio-card{position:relative;display:block;cursor:pointer;}
.radio-card input{position:absolute;opacity:0;width:0;height:0;}
.radio-card-inner{
  display:flex;align-items:center;gap:12px;
  background:var(--white);
  border:2px solid rgba(28,70,79,.12);
  border-radius:14px;
  padding:14px 16px;
  transition:border-color .15s ease, background .15s ease;
}
.radio-card-inner .dot{
  width:18px;height:18px;border-radius:50%;
  border:2px solid rgba(28,70,79,.25);
  flex-shrink:0;
  position:relative;
}
.radio-card input:checked + .radio-card-inner{border-color:var(--green);background:rgba(73,139,112,.06);}
.radio-card input:checked + .radio-card-inner .dot{border-color:var(--green);}
.radio-card input:checked + .radio-card-inner .dot::after{
  content:"";position:absolute;inset:3px;border-radius:50%;background:var(--green);
}
.radio-card-inner strong{display:block;font-size:.92rem;}
.radio-card-inner span{font-size:.8rem;color:rgba(28,70,79,.6);}

.first-deal-form .form-fine{margin-top:14px;}

@media (max-width: 860px){
  .fd-grid{grid-template-columns:1fr;}
}

/* ============ CONTACT ============ */
.contact-grid{
  display:grid;grid-template-columns:.85fr 1.15fr;
  gap:48px;align-items:start;
}
.contact-side p{color:rgba(28,70,79,.68);margin-bottom:22px;max-width:38ch;}
.contact-info{display:flex;flex-direction:column;gap:14px;}
.contact-info a{
  display:flex;align-items:center;gap:10px;
  font-weight:600;color:var(--green-dark);
}
.contact-info a .icon{width:18px;height:18px;}
.contact-info a span{border-bottom:1px dashed rgba(67,122,100,.4);}
.contact-info a:hover{color:var(--ink);}
.contact-info a:hover span{border-color:var(--ink);}

form.contact-form{
  background:var(--white);
  border-radius:20px;
  padding:36px;
  box-shadow:0 12px 30px rgba(28,70,79,.07);
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px;}
.field{display:flex;flex-direction:column;gap:6px;margin-bottom:16px;}
.field label{font-size:.85rem;font-weight:600;color:rgba(28,70,79,.75);}
.field input,.field select,.field textarea{
  font-family:var(--font-body);font-size:.96rem;
  padding:12px 14px;
  border:1.5px solid rgba(28,70,79,.15);
  border-radius:10px;
  background:var(--offwhite);
  color:var(--ink);
  outline:none;
  transition:border-color .15s ease;
}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--green);}
.field textarea{resize:vertical;min-height:110px;}
.contact-form .btn{width:100%;justify-content:center;margin-top:6px;}
.form-fine{font-size:.78rem;color:rgba(28,70,79,.5);margin-top:14px;text-align:center;}
.form-feedback{font-size:.88rem;margin-top:14px;text-align:center;font-weight:500;}
.form-feedback[data-type="success"]{color:var(--green-dark);}
.form-feedback[data-type="error"]{color:#B3413E;}
.turnstile-container{min-height:65px;margin:18px 0;display:flex;justify-content:center;align-items:center;}

/* ============ PORTAIL DE PUBLICATION COMMERÇANT ============ */
.publish-page{min-height:100vh;background:var(--cream);color:var(--ink);}
.publish-header{min-height:78px;padding:14px max(24px,calc((100vw - 1120px)/2));display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid rgba(28,70,79,.12);background:#fff;}
.publish-brand{display:inline-flex;width:170px;max-width:48vw;}
.publish-brand img{display:block;width:100%;height:auto;}
.publish-shell{width:min(900px,calc(100% - 32px));margin:48px auto 80px;}
.publish-intro{max-width:650px;margin:8vh auto 0;padding:48px;border-radius:24px;background:#fff;box-shadow:0 18px 50px rgba(28,70,79,.1);text-align:center;}
.publish-intro h1{font-size:clamp(2rem,5vw,3.3rem);line-height:1.05;margin:18px 0;}
.publish-intro>p{line-height:1.7;margin-bottom:26px;}
.publish-loading h1{font-size:clamp(1.65rem,4vw,2.5rem);}
.loading-spinner{display:block;width:38px;height:38px;margin:0 auto 22px;border:4px solid rgba(28,70,79,.14);border-top-color:var(--green-dark);border-radius:50%;animation:portal-spin .8s linear infinite;}
@keyframes portal-spin{to{transform:rotate(360deg)}}
.delegate-intro{margin:0 auto 28px;padding:34px 42px;}
.honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important;}
.optional-consent{background:rgba(28,70,79,.04);border-radius:12px;padding:14px;}
.publish-progress{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin-bottom:22px;}
.publish-progress button{padding:13px 8px;border:0;border-radius:12px;background:rgba(28,70,79,.08);color:var(--ink);font:inherit;font-size:.86rem;font-weight:600;}
.publish-progress button.active{background:var(--ink);color:#fff;}
.publish-step{border:0;border-radius:22px;padding:34px;background:#fff;box-shadow:0 14px 40px rgba(28,70,79,.08);}
.publish-step legend{float:left;width:100%;font-size:1.65rem;font-weight:800;margin-bottom:6px;}
.publish-step legend+.step-help{clear:both;}
.publish-step legend+.field{clear:both;padding-top:18px;}
.step-help{color:rgba(28,70,79,.7);line-height:1.55;margin-bottom:26px;}
.publish-step .field{margin-bottom:18px;}
.publish-step .field label{display:block;font-weight:650;margin-bottom:8px;}
.publish-step .field small{display:block;color:rgba(28,70,79,.64);margin-top:6px;}
.publish-step input,.publish-step select,.publish-step textarea{width:100%;padding:13px 14px;border:1px solid rgba(28,70,79,.25);border-radius:10px;background:#fff;color:var(--ink);font:inherit;}
.publish-step textarea{min-height:120px;resize:vertical;}
.publish-step input:focus,.publish-step select:focus,.publish-step textarea:focus{outline:3px solid rgba(26,154,112,.2);border-color:var(--green);}
.form-row.three{grid-template-columns:.7fr 1fr 1fr;}
.check-row{display:flex;align-items:flex-start;gap:10px;margin:16px 0;line-height:1.5;}
.check-row input{width:auto;margin-top:4px;flex:0 0 auto;}
.publish-actions{display:flex;justify-content:space-between;gap:12px;margin-top:20px;}
.publish-actions .btn:last-of-type{margin-left:auto;}
.photo-preview{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:18px 0;}
.photo-preview figure{margin:0;position:relative;border-radius:12px;overflow:hidden;background:rgba(28,70,79,.08);aspect-ratio:1;}
.photo-preview img{width:100%;height:100%;object-fit:cover;}
.photo-preview figcaption{position:absolute;left:7px;bottom:7px;padding:4px 8px;border-radius:20px;background:rgba(15,37,42,.82);color:#fff;font-size:.72rem;}
.publish-summary{padding:20px;border-radius:14px;background:rgba(26,154,112,.08);margin:22px 0;line-height:1.6;}
.publish-summary h3{margin-bottom:10px;}
.activation-success{max-width:680px;margin:8vh auto 0;padding:48px;border-radius:24px;background:#fff;box-shadow:0 18px 50px rgba(28,70,79,.1);text-align:center;}
.activation-success h1{font-size:clamp(2rem,5vw,3rem);line-height:1.08;margin:18px 0;}
.activation-success>p{color:rgba(28,70,79,.72);line-height:1.65;}
.activation-summary{margin:28px 0;display:grid;gap:10px;text-align:left;}
.activation-summary div{display:grid;grid-template-columns:110px 1fr;gap:14px;padding:13px 15px;border-radius:12px;background:rgba(26,154,112,.08);}
.activation-summary dt{font-weight:700;color:rgba(28,70,79,.68);}
.activation-summary dd{margin:0;font-weight:650;overflow-wrap:anywhere;}
.activation-actions{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;}
@media(max-width:650px){
  .publish-header{padding:12px 18px;}.publish-shell{width:min(100% - 24px,900px);margin-top:24px}.publish-intro,.publish-step,.activation-success{padding:24px 18px}.publish-progress{grid-template-columns:repeat(2,1fr)}.form-row.three{grid-template-columns:1fr}.photo-preview{grid-template-columns:repeat(2,1fr)}.activation-summary div{grid-template-columns:1fr;gap:4px}
}
button[type="submit"]:disabled{opacity:.6;cursor:not-allowed;}

@media (max-width: 860px){
  .contact-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
  .early-banner{flex-direction:column;align-items:flex-start;}
}

/* ============ FOOTER ============ */
footer{background:var(--ink);color:rgba(238,240,233,.6);padding:36px 0 96px;font-size:.86rem;}
.foot-row{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;}

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta{
  display:none;
  position:fixed;bottom:0;left:0;right:0;
  background:var(--white);
  border-top:1px solid rgba(28,70,79,.1);
  padding:12px 16px;
  box-shadow:0 -8px 24px rgba(28,70,79,.12);
  z-index:60;
}
.sticky-cta .btn{width:100%;justify-content:center;}

/* ============ REVEAL ============ */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease, transform .6s ease;}
.reveal.in{opacity:1;transform:translateY(0);}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1;transform:none;transition:none;}
  html{scroll-behavior:auto;}
  .soon-dot{animation:none;}
}

/* ============ BOUTON WHATSAPP FLOTTANT ============ */
.whatsapp-float{
  position:fixed;
  right:20px;bottom:24px;
  z-index:70;
  width:56px;height:56px;
  border-radius:50%;
  background:#25D366;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 26px rgba(0,0,0,.28);
  transition:transform .2s ease;
}
.whatsapp-float:hover{transform:scale(1.08);}
.whatsapp-float svg{width:28px;height:28px;color:#fff;stroke-width:0;fill:#fff;}
@media (max-width:560px){
  .whatsapp-float{bottom:96px;right:16px;width:50px;height:50px;}
  .whatsapp-float svg{width:25px;height:25px;}
}

/* ============ SUIVI COMMUNAUTÉ — BIENTÔT DISPONIBLE ============ */
.goal-progress{width:100%;margin-top:22px;}
.soon-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--offwhite);
  border:1px solid rgba(28,70,79,.12);
  border-radius:999px;
  padding:8px 16px;
  font-size:.82rem;font-weight:600;color:var(--ink);
}
.soon-dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--green);
  flex-shrink:0;
  animation:soon-pulse 1.8s ease-in-out infinite;
}
@keyframes soon-pulse{
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:.4;transform:scale(.7);}
}

/* ============ SIMULATEUR DE VISIBILITÉ ============ */
.simulator-section{background:var(--sage);}
.simulator-card{
  background:var(--white);
  border-radius:24px;
  padding:44px 40px;
  box-shadow:0 20px 46px rgba(28,70,79,.1);
  max-width:760px;margin:0 auto;
}
.simulator-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:18px;margin-bottom:22px;
}
.simulator-card .field label{font-size:.85rem;font-weight:600;color:rgba(28,70,79,.75);margin-bottom:6px;display:block;}
.simulator-card .field select{
  width:100%;
  font-family:var(--font-body);font-size:.96rem;
  padding:12px 14px;
  border:1.5px solid rgba(28,70,79,.15);
  border-radius:10px;
  background:var(--offwhite);
  color:var(--ink);
}
.simulator-result{
  background:var(--offwhite);
  border-radius:16px;
  padding:26px;
  display:flex;align-items:center;gap:20px;
  margin-top:6px;
}
.simulator-result .big-number{
  font-family:var(--font-head);font-weight:700;
  font-size:2.1rem;color:var(--green-dark);
  white-space:nowrap;
}
.simulator-result .result-text{font-size:.92rem;color:rgba(28,70,79,.72);}
.simulator-note{font-size:.78rem;color:rgba(28,70,79,.5);margin-top:14px;}

@media (max-width:640px){
  .simulator-card{padding:30px 24px;}
  .simulator-grid{grid-template-columns:1fr;}
  .simulator-result{flex-direction:column;align-items:flex-start;gap:8px;}
}

/* ============ CARROUSEL DE DEALS "EN DIRECT" ============ */
.live-deals{background:var(--offwhite);}
.live-deals .section-head .eyebrow{display:inline-flex;align-items:center;gap:8px;}
.deals-scroll{
  display:flex;gap:20px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:8px 4px 22px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
  scrollbar-color:var(--green) transparent;
}
.deals-scroll::-webkit-scrollbar{height:6px;}
.deals-scroll::-webkit-scrollbar-thumb{background:var(--sage);border-radius:99px;}
.deal-card{
  flex:0 0 auto;
  scroll-snap-align:start;
  width:260px;
  background:var(--white);
  border-radius:18px;
  padding:20px;
  box-shadow:0 12px 28px rgba(28,70,79,.07);
}
.deal-card .deal-tag{
  display:inline-flex;align-items:center;
  background:var(--gold);
  color:var(--ink);
  font-size:.74rem;font-weight:700;
  padding:4px 12px;border-radius:999px;
  margin-bottom:14px;
}
.deal-card h3{font-size:1rem;margin-bottom:6px;}
.deal-card p{font-size:.86rem;color:rgba(28,70,79,.65);margin-bottom:14px;}
.deal-card .deal-meta{
  display:flex;justify-content:space-between;align-items:center;
  font-size:.78rem;color:rgba(28,70,79,.5);
  border-top:1px solid rgba(28,70,79,.08);
  padding-top:12px;
}
.deal-card .deal-meta .place{display:flex;align-items:center;gap:5px;}
.deal-card .deal-meta .place .icon{width:13px;height:13px;}

/* ============ FAQ COMMERÇANTS ============ */
.faq-section{background:var(--white);}
.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:12px;}
.faq-item{
  background:var(--white);
  border-radius:14px;
  box-shadow:0 8px 20px rgba(28,70,79,.05);
  overflow:hidden;
}
.faq-question{
  width:100%;
  display:flex;justify-content:space-between;align-items:center;gap:16px;
  padding:18px 22px;
  background:none;border:none;cursor:pointer;
  font-family:var(--font-head);font-weight:600;font-size:.98rem;
  color:var(--ink);text-align:left;
}
.faq-question .chevron{
  width:20px;height:20px;flex-shrink:0;color:var(--green);
  transition:transform .25s ease;
}
.faq-item.open .chevron{transform:rotate(180deg);}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .35s ease;}
.faq-item.open .faq-answer{max-height:280px;}
.faq-answer p{padding:0 22px 20px;font-size:.9rem;color:rgba(28,70,79,.68);}

/* ============ TUTORIEL (mode diaporama cliquable) ============ */
.tuto-slider{position:relative;max-width:340px;margin:0 auto;}
.tuto-scroll{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.tuto-scroll::-webkit-scrollbar{display:none;}
.tuto-card{
  flex:0 0 100%;
  scroll-snap-align:start;
  display:flex;flex-direction:column;align-items:center;text-align:center;
  padding:0 6px;
}
.tuto-controls{
  display:flex;align-items:center;justify-content:center;gap:22px;
  margin-top:18px;
}
.tuto-arrow{
  width:40px;height:40px;border-radius:50%;
  background:var(--white);
  border:1px solid rgba(28,70,79,.12);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  color:var(--ink);
  transition:background .15s ease, transform .15s ease;
  flex-shrink:0;
}
.tuto-arrow:hover{background:var(--sage);}
.tuto-arrow:active{transform:scale(.94);}
.tuto-arrow svg{width:18px;height:18px;}
.tuto-dots{display:flex;gap:8px;}
.tuto-dot{
  width:8px;height:8px;border-radius:50%;
  background:rgba(238,240,233,.4);
  border:none;cursor:pointer;padding:0;
  transition:background .2s ease, transform .2s ease;
}
.tuto-dot.active{background:var(--cream);transform:scale(1.3);}

@media (min-width:900px){
  .tuto-slider{max-width:1080px;}
  .tuto-card{flex:0 0 33.3333%;}
}

/* ============ PAGES LÉGALES ============ */
.legal-hero{
  background:linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  color:var(--cream);
  padding:64px 0 48px;
}
.legal-hero .eyebrow{
  font-family:var(--font-head);font-weight:600;
  color:var(--sage);display:block;margin-bottom:10px;
}
.legal-hero h1{color:var(--cream);font-size:clamp(1.8rem, 3.5vw, 2.6rem);}
.legal-hero .updated{margin-top:12px;font-size:.86rem;color:rgba(238,240,233,.7);}

.legal-body{padding:64px 0 88px;}
.legal-content{max-width:760px;margin:0 auto;}
.legal-content h2{
  font-size:1.3rem;margin:40px 0 14px;
  padding-top:8px;
}
.legal-content h2:first-child{margin-top:0;}
.legal-content h3{font-size:1.05rem;margin:24px 0 10px;}
.legal-content p{
  font-size:.98rem;color:rgba(28,70,79,.78);
  margin-bottom:14px;
}
.legal-content ul{margin:0 0 14px 0;}
.legal-content li{
  font-size:.98rem;color:rgba(28,70,79,.78);
  margin-bottom:8px;padding-left:22px;position:relative;
}
.legal-content li::before{
  content:"";position:absolute;left:0;top:9px;
  width:6px;height:6px;border-radius:50%;background:var(--green);
}
.legal-content strong{color:var(--ink);}
.legal-content a{color:var(--green-dark);border-bottom:1px dashed rgba(67,122,100,.4);}
.legal-content a:hover{color:var(--ink);border-color:var(--ink);}
.legal-content table{width:100%;border-collapse:collapse;margin:16px 0 20px;font-size:.9rem;}
.legal-content th,.legal-content td{
  text-align:left;padding:10px 12px;
  border-bottom:1px solid rgba(28,70,79,.1);
}
.legal-content th{color:var(--ink);font-weight:700;}
.legal-content td{color:rgba(28,70,79,.72);}

.legal-toc{
  background:var(--white);
  border:1px solid rgba(28,70,79,.1);
  border-radius:16px;
  padding:22px 26px;
  margin-bottom:36px;
}
.legal-toc strong{display:block;margin-bottom:10px;font-size:.9rem;}
.legal-toc ol{padding-left:20px;}
.legal-toc li{font-size:.9rem;margin-bottom:6px;padding-left:0;}
.legal-toc li::before{display:none;}
.legal-toc a{color:var(--green-dark);border:none;}
.legal-toc a:hover{color:var(--ink);}

.placeholder{
  background:rgba(232,169,60,.18);
  color:var(--ink);
  padding:1px 6px;
  border-radius:4px;
  font-size:.92em;
}

.legal-links{display:flex;gap:16px;flex-wrap:wrap;}
.legal-links a{font-size:.82rem;color:rgba(238,240,233,.65);}
.legal-links a:hover{color:var(--cream);}

/* ============ BANDEAU COOKIES ============ */
.cookie-banner{
  position:fixed;
  left:16px;right:16px;bottom:16px;
  max-width:640px;
  margin:0 auto;
  background:var(--white);
  border-radius:18px;
  box-shadow:0 16px 40px rgba(28,70,79,.25);
  padding:24px 26px;
  z-index:100;
  display:none;
}
.cookie-banner.visible{display:block;}
.cookie-banner p{
  font-size:.88rem;
  color:rgba(28,70,79,.75);
  margin-bottom:16px;
  line-height:1.5;
}
.cookie-banner p a{color:var(--green-dark);border-bottom:1px dashed rgba(67,122,100,.4);}
.cookie-actions{display:flex;gap:10px;flex-wrap:wrap;}
.cookie-actions .btn{padding:10px 20px;font-size:.86rem;}
.cookie-actions .btn-refuse{background:transparent;border-color:rgba(28,70,79,.25);color:var(--ink);}
.cookie-actions .btn-refuse:hover{background:rgba(28,70,79,.05);}

@media (max-width:560px){
  .cookie-banner{left:12px;right:12px;bottom:12px;padding:20px;}
  .cookie-actions{flex-direction:column;}
  .cookie-actions .btn{width:100%;justify-content:center;}
}
/* ============ RESPONSIVE ============ */
@media (max-width: 880px){
  .hero-grid{grid-template-columns:1fr;}
  .phone-stage{order:-1;margin-bottom:10px;}
  .card-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width: 560px){
  .card-grid{grid-template-columns:1fr;}
  .hero{padding:60px 0 0;}
  section{padding:60px 0;}
  .download-panel,.download-content{padding:36px 26px;}
  .sticky-cta{display:block;}
  footer{padding-bottom:96px;}
}
