* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { margin:0; background:#FAF8F5; }

:root{
  --bg:#FAF8F5; --surface:#FFFFFF; --surface-2:#F3F0EA; --border:#E4E0D8;
  --text:#2B2B28; --text-2:#6E6A63;
  --blue:#5B93BF; --blue-2:#4d82ad; --blue-light:#A8D0E6;
  --papaya:#FF8000; --papaya-light:#FFEDD9;
  --tint:#FFEDD9; --tint-blue:#EAF2F8;
  --nav-bg:rgba(250,248,245,.82);
  --shadow:0 24px 60px -24px rgba(43,43,40,.28);
}
[data-theme="dark"]{
  --bg:#1a1a18; --surface:#242320; --surface-2:#2d2c27; --border:#3a3833;
  --text:#FAF8F5; --text-2:#b0aaa0;
  --blue:#7cafd4; --blue-2:#5B93BF; --blue-light:#3a5468;
  --papaya:#FF8000; --papaya-light:#3a2c1c;
  --tint:#2a2118; --tint-blue:#1b2732;
  --nav-bg:rgba(26,26,24,.74);
  --shadow:0 24px 60px -24px rgba(0,0,0,.65);
}

#dv-root{
  position:relative; overflow-x:hidden; min-height:100vh;
  background:var(--bg); color:var(--text);
  font-family:Arial,'Helvetica Neue',Helvetica,sans-serif; font-size:16px; line-height:1.6;
}

h1,h2,h3,h4,.mockup-heading,.demo-fake-heading { font-family:"Calibri","Carlito","Segoe UI",sans-serif; font-weight:700; line-height:1.06; letter-spacing:-0.01em; color:var(--text); }
a { color:var(--blue); text-decoration:none; }
a:hover { color:var(--papaya); }
:where([data-theme] *:not(input):not(textarea)) { transition:background-color .4s ease, border-color .4s ease, color .35s ease, fill .4s ease; }

@keyframes gradientMove { to { background-position:200% center; } }
@keyframes floaty { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); } }
@keyframes blob1 { 0%,100%{ transform:translate(0,0) scale(1); } 25%{ transform:translate(26vw,-18vw) scale(1.5); } 50%{ transform:translate(10vw,16vw) scale(.7); } 75%{ transform:translate(-20vw,-8vw) scale(1.3); } }
@keyframes blob2 { 0%,100%{ transform:translate(0,0) scale(1); } 33%{ transform:translate(-24vw,16vw) scale(1.55); } 66%{ transform:translate(16vw,-14vw) scale(.72); } }
@keyframes blob3 { 0%,100%{ transform:translate(0,0) scale(1); } 33%{ transform:translate(22vw,20vw) scale(1.45); } 66%{ transform:translate(-18vw,-16vw) scale(.78); } }
@keyframes blob4 { 0%,100%{ transform:translate(0,0) scale(1); } 50%{ transform:translate(-24vw,-20vw) scale(1.5); } }
@keyframes livePulse { 0%{ box-shadow:0 0 0 0 rgba(76,190,120,.55); } 70%{ box-shadow:0 0 0 7px rgba(76,190,120,0); } 100%{ box-shadow:0 0 0 0 rgba(76,190,120,0); } }

#dv-bg{
  position:fixed; inset:-8%; z-index:0; pointer-events:none; overflow:hidden;
  transition:transform .5s cubic-bezier(.2,.7,.2,1);
}
#dv-bg .blob{ position:absolute; border-radius:50%; filter:blur(55px); }
#dv-bg .blob-1{ top:-12%; left:-6%; width:48vw; height:48vw; background:radial-gradient(circle, var(--blue-light), transparent 66%); opacity:.6; animation:blob1 11s ease-in-out infinite; }
#dv-bg .blob-2{ bottom:-16%; right:-6%; width:46vw; height:46vw; background:radial-gradient(circle, var(--papaya), transparent 66%); opacity:.4; animation:blob2 13s ease-in-out infinite; }
#dv-bg .blob-3{ top:36%; left:44%; width:36vw; height:36vw; background:radial-gradient(circle, var(--tint-blue), transparent 68%); opacity:.55; filter:blur(60px); animation:blob3 15s ease-in-out infinite; }
#dv-bg .blob-4{ top:8%; right:24%; width:30vw; height:30vw; background:radial-gradient(circle, var(--papaya), transparent 68%); opacity:.3; filter:blur(58px); animation:blob4 12s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

.wrap { max-width:1180px; margin:0 auto; }
.section { position:relative; z-index:1; padding:96px 24px; scroll-margin-top:84px; }
.section--alt { background:var(--surface-2); }

.eyebrow { font-size:14px; font-weight:700; color:var(--papaya); text-transform:uppercase; letter-spacing:.08em; }

.btn {
  display:inline-flex; align-items:center; gap:8px;
  border:none; border-radius:999px; cursor:pointer;
  font-family:"Calibri","Carlito","Segoe UI",sans-serif; font-weight:700; font-size:17px;
  padding:16px 30px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease;
}
.btn-primary { background:var(--papaya); color:#fff; box-shadow:0 12px 28px -12px rgba(255,128,0,.75); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 18px 34px -12px rgba(255,128,0,.85); color:#fff; }
.btn-outline { background:transparent; color:var(--text); border:1.5px solid var(--border); }
.btn-outline:hover { border-color:var(--blue); color:var(--blue); }

.pill {
  display:inline-flex; align-items:center;
  background:var(--surface); border:1px solid var(--border); border-radius:999px;
  padding:9px 16px; font-size:14px; font-weight:700;
}

.card {
  background:var(--surface); border:1px solid var(--border); border-radius:20px; padding:32px;
  transition:transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity:1; transform:none; }
.reveal--d1 { transition-delay:.08s; }
.reveal--d2 { transition-delay:.16s; }
.reveal--d3 { transition-delay:.24s; }
.reveal--d4 { transition-delay:.3s; }

.placeholder-media {
  background:repeating-linear-gradient(45deg,var(--border),var(--border) 9px,transparent 9px,transparent 18px), var(--surface-2);
  display:flex; align-items:center; justify-content:center;
  border-radius:10px;
}
.placeholder-media[data-label]::after {
  content: attr(data-label);
  font-family:ui-monospace,Menlo,Consolas,monospace; font-size:10px; color:var(--text-2);
  text-transform:uppercase; letter-spacing:.06em;
  background:var(--surface); padding:3px 8px; border-radius:4px;
}

.nav {
  position:fixed; top:0; left:0; right:0; z-index:150;
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  background:var(--nav-bg); border-bottom:1px solid var(--border);
}
.nav-inner { padding:12px 24px; display:flex; align-items:center; gap:24px; }
.nav-logo { display:flex; align-items:center; flex-shrink:0; }
.nav-logo img { height:30px; width:auto; display:block; }
.nav-spacer { flex:1; }
.nav-links { position:relative; display:flex; align-items:center; gap:26px; font-size:15px; font-weight:700; }
.nav-links a { position:relative; color:var(--text); padding-bottom:6px; }
.nav-underline {
  position:absolute; bottom:0; left:0; height:2px; width:0; background:var(--papaya); border-radius:2px;
  opacity:0; transform:translateX(0);
  transition:transform .4s cubic-bezier(.4,1,.4,1), width .4s cubic-bezier(.4,1,.4,1), opacity .3s ease;
}
.theme-toggle {
  position:relative; width:52px; height:28px; border-radius:999px;
  border:1px solid var(--border); background:var(--surface-2); flex-shrink:0; cursor:pointer;
}
.theme-toggle-knob {
  position:absolute; top:3px; left:3px; width:22px; height:22px; border-radius:50%;
  background:var(--blue); box-shadow:0 2px 5px rgba(0,0,0,.28);
  transition:transform .32s cubic-bezier(.4,1.3,.5,1), background-color .32s ease;
}
[data-theme="dark"] .theme-toggle-knob { background:var(--papaya); transform:translateX(24px); }
.btn-small { padding:10px 20px; font-size:15px; }

.nav-burger {
  display:none; flex-direction:column; justify-content:center; gap:4px;
  width:40px; height:40px; padding:9px; flex-shrink:0; cursor:pointer;
  border:1px solid var(--border); border-radius:12px; background:var(--surface-2);
}
.nav-burger span { display:block; width:100%; height:2px; border-radius:2px; background:var(--text); }
.mobile-nav-panel {
  position:absolute; top:100%; left:0; right:0;
  display:flex; flex-direction:column; gap:4px; padding:14px 24px 18px;
  background:var(--surface); border-bottom:1px solid var(--border); box-shadow:var(--shadow);
}
.mobile-nav-panel[hidden] { display:none; }
.mobile-nav-panel a { color:var(--text); font-weight:700; font-size:16px; padding:12px 4px; }
.mobile-nav-panel a:hover { color:var(--papaya); }
.mobile-nav-cta { justify-content:center; margin-top:8px; color:#fff; }
.mobile-nav-cta:hover { color:#fff; }

.hero { position:relative; z-index:1; padding:150px 24px 90px; }
.hero-inner { display:flex; flex-wrap:wrap; gap:56px; align-items:center; }
.hero-copy { flex:1; min-width:340px; }
.hero-badge-dot { width:8px; height:8px; border-radius:50%; background:var(--papaya); margin-right:9px; display:inline-block; }
.hero-title { font-size:clamp(40px,6vw,66px); margin-bottom:22px; }
.hero-gradient-text {
  background:linear-gradient(90deg,var(--papaya),var(--blue),var(--papaya));
  background-size:200% auto; -webkit-background-clip:text; background-clip:text; color:transparent;
  animation:gradientMove 6s linear infinite;
}
.hero-sub { font-size:clamp(17px,2vw,20px); color:var(--text-2); max-width:540px; margin-bottom:34px; }
.hero-ctas { display:flex; flex-wrap:wrap; gap:14px; align-items:center; }
.hero-mockup-wrap { flex:1; min-width:340px; display:flex; justify-content:center; }
.hero-mockup { width:100%; max-width:520px; animation:floaty 7s ease-in-out infinite; }
.hero-mockup > div, .mockup-window > div { overflow:hidden; background:var(--surface); box-shadow:var(--shadow); border:1px solid var(--border); }

.mockup-chrome { height:38px; display:flex; align-items:center; gap:8px; padding:0 14px; background:var(--surface-2); border-bottom:1px solid var(--border); border-radius:16px 16px 0 0; }
.mockup-chrome .dot { width:10px; height:10px; border-radius:50%; }
.dot-red { background:#ff5f57; } .dot-yellow { background:#febc2e; } .dot-green { background:#28c840; }
.mockup-url { flex:1; height:22px; border-radius:6px; background:var(--bg); display:flex; align-items:center; justify-content:center; font-size:11px; color:var(--text-2); }
.mockup-live { display:inline-flex; align-items:center; gap:5px; font-size:10.5px; font-weight:700; color:#3fae60; }
.mockup-live-dot { width:7px; height:7px; border-radius:50%; background:#3fae60; animation:livePulse 2s infinite; }

.mockup-body { background:var(--surface); border-radius:0 0 16px 16px; }
.mockup-nav { display:flex; align-items:center; justify-content:space-between; padding:14px 18px; border-bottom:1px solid var(--border); }
.mockup-brand { font-family:'Calibri','Carlito',sans-serif; font-weight:700; color:var(--blue); font-size:16px; }
.mockup-links { display:flex; gap:12px; font-size:11px; color:var(--text-2); }
.mockup-content { padding:22px 18px 18px; }
.mockup-content .mockup-heading { font-size:19px; margin-bottom:8px; }
.mockup-content p { font-size:12.5px; color:var(--text-2); margin-bottom:14px; }
.mockup-cta { display:inline-block; background:var(--blue); color:#fff; font-size:11.5px; font-weight:700; padding:8px 16px; border-radius:999px; }
.mockup-photo { margin:0 18px 16px; height:96px; }
.mockup-cards { display:flex; gap:12px; padding:0 18px 20px; }
.mockup-card { flex:1; border:1px solid var(--border); border-radius:10px; padding:12px; }
.mockup-card-icon { width:22px; height:22px; border-radius:6px; margin-bottom:8px; }
.mockup-card-icon--blue { background:var(--tint-blue); }
.mockup-card-icon--tint { background:var(--tint); }
.mockup-card-line { height:7px; background:var(--surface-2); border-radius:4px; margin-bottom:6px; }
.mockup-card-line:last-child { margin-bottom:0; }

.section-head { max-width:640px; margin-bottom:56px; }
.section-title { font-size:clamp(30px,4vw,46px); margin:14px 0 16px; }
.section-sub { font-size:18px; color:var(--text-2); }

.services-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; }
@media (max-width:900px) { .services-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:560px) { .services-grid { grid-template-columns:1fr; } }
.service-card { position:relative; }
.service-num { font-family:'Calibri','Carlito',sans-serif; font-weight:700; font-size:15px; color:var(--blue); margin-bottom:20px; }
.service-icon { width:44px; height:44px; border-radius:12px; margin-bottom:18px; display:flex; align-items:center; justify-content:center; }
.service-icon--blue { background:var(--tint-blue); }
.service-icon--tint { background:var(--tint); }
.service-icon-shape { width:16px; height:16px; }
.service-icon-shape--square { border-radius:4px; background:var(--blue); }
.service-icon-shape--circle { border-radius:50%; background:var(--papaya); }
.service-icon-shape--diamond { background:var(--blue); transform:rotate(45deg); }
.service-icon-shape--ring { border:3px solid var(--papaya); border-radius:50%; background:none; }
.service-card h3 { font-size:22px; margin-bottom:10px; }
.service-card p { color:var(--text-2); font-size:15.5px; }
.service-badge {
  position:absolute; top:22px; right:22px;
  background:var(--papaya-light); color:var(--papaya);
  font-size:11.5px; font-weight:700; padding:5px 11px; border-radius:999px;
}

.section-head--center { text-align:center; margin:0 auto 40px; max-width:660px; }

.demo-tabs { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:18px; }
.demo-tab {
  cursor:pointer; border:1.5px solid var(--border); background:transparent; color:var(--text-2);
  padding:9px 18px; border-radius:999px; font-weight:700; font-size:14px; font-family:inherit;
  transition:all .25s ease;
}
.demo-tab.is-active { border-color:transparent; color:#fff; }
.demo-tab[data-sector-tab="boulangerie"].is-active { background:#C77D3A; }
.demo-tab[data-sector-tab="plomberie"].is-active { background:#2E7DA6; }
.demo-tab[data-sector-tab="coiffure"].is-active { background:#B0568A; }
.demo-tab[data-sector-tab="fleuriste"].is-active { background:#4E8B57; }

.demo-view-toggle-wrap { display:flex; justify-content:center; margin-bottom:30px; }
.demo-view-toggle { display:inline-flex; gap:4px; padding:4px; background:var(--surface); border:1px solid var(--border); border-radius:999px; }
.demo-view-tab {
  cursor:pointer; display:inline-flex; align-items:center; gap:7px; border:none; background:transparent;
  color:var(--text-2); padding:8px 16px; border-radius:999px; font-weight:700; font-size:13.5px; font-family:inherit;
  transition:all .25s ease;
}
.demo-view-tab.is-active { background:var(--text); color:var(--bg); }
[data-theme="dark"] .demo-view-tab.is-active { background:var(--surface-2); color:var(--text); }
.demo-view-icon { display:inline-block; border:1.6px solid currentColor; border-radius:2px; }
.demo-view-icon--desktop { width:15px; height:11px; }
.demo-view-icon--mobile { width:9px; height:14px; }

.demo-frame {
  overflow:hidden; background:var(--surface); box-shadow:var(--shadow); border:1px solid var(--border);
  border-radius:16px; max-width:760px; margin:0 auto;
  transition:max-width .55s cubic-bezier(.4,1,.4,1), border-radius .45s ease;
}
.demo-frame[data-view="mobile"] { border-radius:30px; max-width:320px; }

.demo-chrome { height:38px; display:flex; align-items:center; gap:8px; padding:0 14px; background:var(--surface-2); border-bottom:1px solid var(--border); }
.demo-chrome[hidden] { display:none; }
.demo-chrome--mobile { height:34px; justify-content:space-between; font-size:11px; font-weight:700; color:var(--text-2); }
.demo-notch { width:80px; height:16px; background:var(--text); opacity:.85; border-radius:0 0 10px 10px; }
.demo-signal { width:16px; height:9px; border:1.4px solid currentColor; border-radius:2px; display:inline-block; }

.demo-stage { position:relative; height:430px; background:var(--surface); color:var(--text); transition:height .55s cubic-bezier(.4,1,.4,1); overflow:hidden; }
.demo-stage[data-view="mobile"] { height:560px; }

.demo-panel { position:absolute; inset:0; opacity:0; pointer-events:none; transition:opacity .7s ease; }
.demo-panel.is-active { opacity:1; pointer-events:auto; }

.demo-panel-nav { display:flex; align-items:center; justify-content:space-between; padding:15px 22px; }
.demo-panel-brand { font-family:'Calibri','Carlito',sans-serif; font-weight:700; font-size:19px; }
.demo-nav-links { font-size:12px; color:var(--text-2); }
.demo-burger { display:none; flex-direction:column; gap:3px; }
.demo-burger span { width:18px; height:2px; background:var(--text-2); display:block; }
.demo-stage[data-view="mobile"] .demo-nav-links { display:none; }
.demo-stage[data-view="mobile"] .demo-burger { display:inline-flex; }

.demo-split { display:flex; gap:20px; padding:24px 22px 16px; }
.demo-stage[data-view="mobile"] .demo-split { flex-direction:column; gap:14px; }
.demo-stage[data-view="mobile"] .demo-split > div { width:100%; flex:none; }
.demo-media { flex:1; height:200px; }
.demo-stage[data-view="mobile"] .demo-media { height:150px; }
.demo-split-copy { flex:1; display:flex; flex-direction:column; justify-content:center; }
.demo-eyebrow { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; margin-bottom:8px; display:block; }
.demo-panel .demo-fake-heading { font-size:25px; margin-bottom:10px; }
.demo-panel p { font-size:13px; color:var(--text-2); margin-bottom:16px; }
.demo-cta { align-self:flex-start; display:inline-block; color:#fff; font-weight:700; font-size:13px; padding:10px 20px; border-radius:999px; }
.demo-cta--light { background:#fff; color:#2E7DA6; }
.demo-cta--light-green { background:#fff; color:#4E8B57; }
.demo-tags { display:flex; gap:8px; padding:0 22px; }
.demo-tags span { font-size:11.5px; font-weight:700; padding:7px 14px; border-radius:999px; }

.demo-urgence-badge { background:#2E7DA6; color:#fff; font-size:11px; font-weight:700; padding:6px 12px; border-radius:999px; }
.demo-plomberie-banner { background:#2E7DA6; padding:38px 22px; text-align:center; color:#fff; }
.demo-plomberie-banner .demo-fake-heading { color:#fff; font-size:30px; margin-bottom:10px; }
.demo-plomberie-banner p { color:rgba(255,255,255,.88); max-width:420px; margin:0 auto 18px; font-size:13.5px; }
.demo-stats { display:flex; gap:12px; padding:18px 22px; }
.demo-stat { flex:1; border:1px solid var(--border); border-radius:12px; padding:14px; text-align:center; }
.demo-stat-num { font-size:22px; font-weight:700; color:#2E7DA6; font-family:'Calibri','Carlito',sans-serif; }
.demo-stat-label { font-size:11px; color:var(--text-2); }

.demo-coiffure-hero { text-align:center; padding:26px 22px 18px; }
.demo-coiffure-hero .demo-fake-heading { font-size:26px; margin:8px 0 16px; }
.demo-gallery { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; padding:0 22px; align-items:start; }
.demo-stage[data-view="mobile"] .demo-gallery { grid-template-columns:1fr 1fr; }
.demo-gallery-item--tall { height:150px; }
.demo-gallery-item--short { height:130px; margin-top:20px; }

.demo-fleuriste-hero { position:relative; margin:16px 22px 14px; height:188px; border-radius:14px; overflow:hidden; }
.demo-fleuriste-overlay {
  position:absolute; inset:0; padding:18px 20px; display:flex; align-items:flex-end;
  background:linear-gradient(to top, rgba(20,40,24,.62), rgba(20,40,24,.05));
}
.demo-fleuriste-overlay .demo-fake-heading { color:#fff; font-size:24px; margin-bottom:12px; }
.demo-tiles { display:flex; gap:12px; padding:0 22px; }
.demo-tile { flex:1; }
.demo-tile-media { height:56px; margin-bottom:8px; }
.demo-tile-title { font-size:12px; font-weight:700; }
.demo-tile-price { font-size:11px; color:#4E8B57; font-weight:700; }

.demo-footer-note { text-align:center; font-size:13.5px; color:var(--text-2); margin-top:18px; }
.demo-footer-note a { font-weight:700; }

.process-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:24px; }
.process-num { font-family:'Calibri','Carlito',sans-serif; font-weight:700; font-size:44px; line-height:1; margin-bottom:14px; }
.process-num--blue { color:var(--blue-light); }
.process-num--papaya { color:var(--papaya); }
.process-rule { height:2px; background:var(--border); margin-bottom:18px; }
.process-step h3 { font-size:20px; margin-bottom:8px; }
.process-step p { color:var(--text-2); font-size:15px; }

.section-title--tight { margin:14px 0 0; }
.testimonial-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; }
.testimonial-quote-mark { font-family:'Calibri','Carlito',sans-serif; color:var(--papaya); font-size:48px; line-height:.4; margin-bottom:8px; }
.testimonial-card p { font-size:16px; margin-bottom:22px; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.testimonial-avatar { width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:700; font-family:'Calibri','Carlito',sans-serif; }
.testimonial-avatar--blue { background:var(--tint-blue); color:var(--blue); }
.testimonial-avatar--papaya { background:var(--tint); color:var(--papaya); }
.testimonial-name { font-weight:700; font-size:15px; }

.about-inner { display:flex; flex-wrap:wrap; gap:56px; align-items:center; }
.about-copy { flex:1; min-width:300px; }
.about-title { font-size:clamp(30px,4vw,44px); margin:14px 0 20px; }
.about-copy p { font-size:17px; color:var(--text-2); margin-bottom:16px; }
.about-tags { display:flex; flex-wrap:wrap; gap:10px; margin-top:12px; }
.about-card-wrap { flex:1; min-width:300px; display:flex; justify-content:center; }
.about-card { background:var(--surface); border:1px solid var(--border); border-radius:24px; padding:38px; max-width:380px; width:100%; box-shadow:var(--shadow); }
.about-card h3 { font-size:24px; margin:10px 0 22px; }
.about-checklist { display:flex; flex-direction:column; gap:16px; }
.about-check-item { display:flex; align-items:flex-start; gap:12px; }
.about-check-mark {
  flex-shrink:0; width:24px; height:24px; border-radius:50%;
  background:var(--tint); color:var(--papaya); display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:13px;
}
.about-check-item span:last-child { font-size:15px; }

.espace-inner { display:flex; flex-wrap:wrap; gap:56px; align-items:flex-start; }
.espace-copy { flex:1; min-width:320px; }
.espace-copy p { font-size:18px; color:var(--text-2); margin-bottom:28px; }
.espace-features { display:flex; flex-direction:column; gap:18px; margin-bottom:30px; }
.espace-feature { display:flex; align-items:flex-start; gap:14px; }
.espace-feature-icon { flex-shrink:0; width:40px; height:40px; border-radius:11px; display:flex; align-items:center; justify-content:center; }
.espace-feature-icon--blue { background:var(--tint-blue); }
.espace-feature-icon--tint { background:var(--tint); }
.espace-feature-shape--photos { width:15px; height:12px; border:2px solid var(--blue); border-radius:3px; }
.espace-feature-shape--stats { width:14px; height:14px; border:2px solid var(--papaya); border-radius:3px; border-bottom-width:5px; }
.espace-feature-shape--privacy { width:14px; height:14px; border:2px solid var(--blue); border-radius:50%; }
.espace-feature-shape--social { width:14px; height:14px; border:2px solid var(--papaya); transform:rotate(45deg); }
.espace-feature-title { font-weight:700; font-size:16px; margin-bottom:3px; }
.espace-feature-text { font-size:15px; color:var(--text-2); }
.espace-badge { gap:9px; }
.espace-badge-dot { width:8px; height:8px; border-radius:50%; background:#3fae60; }

.espace-mockup-wrap { flex:1; min-width:340px; display:flex; justify-content:center; }
.espace-mockup { width:100%; max-width:520px; }

.espace-header { display:flex; align-items:center; justify-content:space-between; padding:16px 18px 12px; }
.espace-header-title { font-family:'Calibri','Carlito',sans-serif; font-weight:700; font-size:15px; }
.espace-header-hello { font-size:11px; font-weight:700; color:var(--text-2); }

.espace-stats-card { margin:0 18px; padding:16px; border:1px solid var(--border); border-radius:14px; }
.espace-stats-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.espace-stats-label { font-size:12.5px; font-weight:700; }
.espace-stats-delta { font-size:11px; font-weight:700; color:#3fae60; }
.espace-chart { display:flex; align-items:flex-end; gap:9px; height:78px; }
.espace-chart-bar { flex:1; background:var(--tint-blue); border-radius:5px 5px 0 0; }
.espace-chart-bar--blue { background:var(--blue); }
.espace-chart-bar--papaya { background:var(--papaya); }
.espace-stats-row { display:flex; gap:20px; margin-top:14px; }
.espace-stat-num { font-size:20px; font-weight:700; font-family:'Calibri','Carlito',sans-serif; }
.espace-stat-label { font-size:11px; color:var(--text-2); }

.espace-photos { margin:14px 18px 18px; }
.espace-photos-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
.espace-photos-label { font-size:12.5px; font-weight:700; }
.espace-add-badge { display:inline-flex; align-items:center; gap:5px; background:var(--tint); color:var(--papaya); font-size:11px; font-weight:700; padding:5px 11px; border-radius:999px; }
.espace-photo-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; }
.espace-photo { aspect-ratio:1; border-radius:9px; }
.espace-photo-add { aspect-ratio:1; border-radius:9px; border:1.5px dashed var(--border); display:flex; align-items:center; justify-content:center; color:var(--text-2); font-size:20px; font-weight:700; }
.espace-photo-note { margin-top:10px; font-family:ui-monospace,Menlo,Consolas,monospace; font-size:10px; color:var(--text-2); text-transform:uppercase; letter-spacing:.06em; }

.espace-social-card { margin:0 18px 18px; padding:16px; border:1px solid var(--border); border-radius:14px; }
.espace-social-title { font-size:12.5px; font-weight:700; }
.espace-post-preview { border:1px solid var(--border); border-radius:10px; padding:11px 12px; margin:12px 0 13px; background:var(--surface-2); }
.espace-post-line { height:7px; background:var(--border); border-radius:4px; margin-bottom:7px; }
.espace-post-line:last-child { margin-bottom:0; }
.espace-social-label { font-size:11px; font-weight:700; color:var(--text-2); margin-bottom:9px; }
.espace-social-list { display:flex; flex-direction:column; gap:8px; margin-bottom:14px; }
.espace-social-row { display:flex; align-items:center; gap:9px; font-size:12px; font-weight:700; }
.espace-social-row--off { color:var(--text-2); }
.espace-social-check { width:17px; height:17px; border-radius:5px; background:var(--papaya); display:inline-flex; align-items:center; justify-content:center; color:#fff; font-size:11px; flex-shrink:0; }
.espace-social-check--off { background:none; border:1.5px solid var(--border); }
.espace-social-dot { width:9px; height:9px; flex-shrink:0; }
.espace-social-dot--fb { border-radius:2px; background:#1877F2; }
.espace-social-dot--ig { border-radius:3px; background:#E4405F; }
.espace-social-dot--gmb { border-radius:50%; background:#4285F4; }
.espace-social-dot--li { border-radius:2px; background:#0A66C2; }
.espace-social-publish { display:flex; align-items:center; justify-content:flex-end; gap:8px; }
.espace-publish-btn { background:var(--papaya); color:#fff; font-size:11.5px; font-weight:700; padding:8px 16px; border-radius:999px; }

.wrap-narrow { max-width:1080px; margin:0 auto; }
.contact-card {
  background:var(--surface); border:1px solid var(--border); border-radius:28px; overflow:hidden;
  box-shadow:var(--shadow); display:flex; flex-wrap:wrap;
}
.contact-info { flex:1; min-width:300px; padding:52px 44px; background:linear-gradient(150deg, var(--tint-blue), var(--tint)); }
.contact-title { font-size:clamp(28px,3.5vw,40px); margin:14px 0 16px; }
.contact-lead { font-size:16.5px; color:var(--text-2); margin-bottom:32px; }
.contact-row, .contact-row * { transition:color .15s ease; }
.contact-row { display:flex; align-items:center; gap:14px; margin-bottom:18px; color:var(--text); }
.contact-row:last-child { margin-bottom:0; }
.contact-row:hover { color:var(--papaya); }
.contact-row-icon {
  width:44px; height:44px; border-radius:12px; background:var(--surface); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-icon-envelope { width:16px; height:12px; border:2px solid var(--blue); border-radius:2px; }
.contact-icon-phone { width:14px; height:14px; border:2px solid var(--blue); border-radius:50%; }
.contact-row-label { display:block; font-size:12px; color:var(--text-2); text-transform:uppercase; letter-spacing:.06em; }
.contact-row-value { font-weight:700; font-size:16px; transition:color .15s ease; }

.contact-form-wrap { flex:1.1; min-width:320px; padding:52px 44px; }
#contact-form { display:flex; flex-direction:column; gap:16px; }
#contact-form[hidden] { display:none; }
.contact-form-row { display:flex; gap:14px; flex-wrap:wrap; }
.contact-form-row label { flex:1; min-width:140px; }
#contact-form label { display:flex; flex-direction:column; gap:6px; font-size:13px; font-weight:700; color:var(--text-2); }
#contact-form input, #contact-form textarea {
  padding:13px 15px; border-radius:11px; border:1px solid var(--border);
  background:var(--bg); color:var(--text); font-size:15px; font-family:inherit;
}
#contact-form textarea { resize:vertical; }
.contact-submit { margin-top:4px; width:100%; justify-content:center; padding:16px; }
.contact-fineprint { font-size:12.5px; color:var(--text-2); text-align:center; }
.contact-error {
  font-size:13.5px; color:#c0392b; background:var(--tint); border:1px solid var(--border);
  border-radius:11px; padding:12px 14px;
}
.contact-error a { font-weight:700; }

.contact-success { text-align:center; padding:40px 10px; }
.contact-success-icon {
  width:64px; height:64px; border-radius:50%; background:var(--tint); color:var(--papaya);
  display:flex; align-items:center; justify-content:center; margin:0 auto 20px;
  font-size:30px; font-family:'Calibri','Carlito',sans-serif; font-weight:700;
}
.contact-success h3 { font-size:24px; margin-bottom:10px; }
.contact-success p { color:var(--text-2); font-size:16px; max-width:340px; margin:0 auto; }

.site-footer { position:relative; z-index:1; border-top:1px solid var(--border); }
.footer-cta { background:linear-gradient(135deg, var(--tint-blue), var(--tint)); padding:52px 24px; }
.footer-cta-inner { display:flex; flex-wrap:wrap; gap:24px; align-items:center; justify-content:space-between; }
.footer-cta-inner h3 { font-size:clamp(24px,3vw,30px); margin-bottom:8px; }
.footer-cta-inner p { font-size:16px; color:var(--text-2); }
.footer-cta-btn { white-space:nowrap; padding:16px 32px; }

.footer-bar { background:var(--surface); padding:26px 24px; }
.footer-bar-inner { display:flex; flex-wrap:wrap; gap:20px; align-items:center; justify-content:space-between; }
.footer-logo { height:30px; width:auto; display:block; }
.footer-nav { display:flex; flex-wrap:wrap; gap:26px; font-size:14.5px; font-weight:700; }
.footer-nav a { color:var(--text); }
.footer-contact { display:flex; flex-wrap:wrap; gap:18px; font-size:14px; color:var(--text-2); }
.footer-contact-email { color:var(--text); font-weight:700; }

.footer-legal {
  margin-top:24px; padding-top:20px; border-top:1px solid var(--border);
  font-size:12.5px; color:var(--text-2); display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between;
}
.footer-legal a { color:var(--text-2); }

@media (max-width: 767px) {
  .nav-links { display:none; }
  .nav-cta { display:none; }
  .nav-burger { display:flex; }
  .nav-inner { gap:14px; }
  .btn-small { padding:9px 16px; font-size:14px; }
}
